home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / ACGIFREE.ZIP / INCLUDE / A_ACGI.H next >
Encoding:
C/C++ Source or Header  |  1996-08-05  |  1.2 KB  |  54 lines

  1. //a_This is the main include
  2.  
  3.  
  4. //a_Predefinitions
  5. #include "a_predef.h"
  6.  
  7. //a_Global function declarations
  8. #include "a_global.h"
  9.  
  10. //a_Structures
  11. #include "a_struct.h"
  12.  
  13. //a_Forward declarations
  14. class AStreamOutput;
  15.  
  16. //a_Base classes
  17. #include "a_base.h"
  18.  
  19. //a_Branch of the hierarchy that deals with encryption, encoding, conversion, etc...
  20. #include "a_conv.h"
  21.  
  22. //a_AArray and ABitArray classes
  23. #include "a_array.h"
  24.  
  25. //a_AList, ADataItem and other founding container/element classes
  26. #include "a_list.h"
  27.  
  28. //a_AElementPairList and items derrived from it
  29. #include "a_elist.h"
  30.  
  31. //a_HTML form items and lists
  32. #include "a_form.h"
  33.  
  34. //a_Matrix classes
  35. #ifdef __RTTI__
  36. #include "a_matrix.h"
  37. #else
  38. #pragma message ("To use matrix derrived object, you must have RTTI compliant compiler and _CPPRTTI defined")
  39. #endif
  40.  
  41. //a_Character sets and such
  42. #ifdef __RTTI__
  43. #include "a_cset.h"
  44. #else
  45. #pragma message ("To use character sets, you must have RTTI compliant compiler and _CPPRTTI defined")
  46. #endif
  47.  
  48. //a_Branch of the hierarchy that deals with output as stream, HTML, CGI, X11 bitmap, etc...
  49. #include "a_stream.h"
  50.  
  51. //a_Shooping Cart and items
  52. #include "a_scart.h"
  53.  
  54.